ResponseReceivedExtraInfoEvent

data class ResponseReceivedExtraInfoEvent(requestId: RequestId, blockedCookies: List<BlockedSetCookieWithReason>, headers: Headers, resourceIPAddressSpace: IPAddressSpace, headersText: String?) : Event

Fired when additional information about a responseReceived event is available from the network stack. Not every responseReceived event will have an additional responseReceivedExtraInfo for it, and responseReceivedExtraInfo may be fired before or after responseReceived.

Constructors

ResponseReceivedExtraInfoEvent
Link copied to clipboard
fun ResponseReceivedExtraInfoEvent(requestId: RequestId, blockedCookies: List<BlockedSetCookieWithReason>, headers: Headers, resourceIPAddressSpace: IPAddressSpace, headersText: String? = null)

Functions

domain
Link copied to clipboard
open override fun domain(): String
Returns domain name for which event was generated.
eventName
Link copied to clipboard
open override fun eventName(): String
Returns event name as described in protocol.

Properties

blockedCookies
Link copied to clipboard
val blockedCookies: List<BlockedSetCookieWithReason>
A list of cookies which were not stored from the response along with the corresponding reasons for blocking.
headers
Link copied to clipboard
val headers: Headers
Raw response headers as they were received over the wire.
headersText
Link copied to clipboard
val headersText: String? = null
Raw response header text as it was received over the wire.
requestId
Link copied to clipboard
val requestId: RequestId
Request identifier.
resourceIPAddressSpace
Link copied to clipboard
val resourceIPAddressSpace: IPAddressSpace
The IP address space of the resource.

Sources

jvm source
Link copied to clipboard